@charset "UTF-8";
/* CSS Document for Review Page */

/* Root Variables for Consistent Styling */
:root {
    --primary-color: #007f5f; /* Rich green */
    --secondary-color: #ffcc00; /* Golden accent */
    --tertiary-color: #1b4332; /* Deep contrast */
    --background-light: #f8f9fa; /* Soft background */
    --background-dark: #081c15; /* Dark contrast */
    --text-color: #ffffff; /* Light text */
    --text-dark: #1b4332; /* Dark text */
    --cta-hover: #ffb700;
    --content-bg: #ffffff;
    --border-color: #e0e0e0;
    --text-muted: #6c757d;
}

/* Universal Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body & General Styles */
body {
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation Bar (Copied from fixed faq-style.css) */
.navigation {
    background: var(--primary-color);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    height: 60px;
    z-index: 1000;
}

.dropdown {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.dropbtn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.dropbtn img {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--tertiary-color);
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    border-radius: 8px;
    left: 0;
    top: 100%;
    margin-top: 0;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
    font-weight: bold;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#QB-logo {
    font-size: 2em;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-left: auto;
    padding-right: 20px;
}


/* Main Content Area */
.content-container {
    flex: 1; /* Allow content to grow */
    max-width: 800px; /* Adjust max-width as needed */
    margin: 30px auto;
    padding: 30px;
    text-align: center;
    background-color: var(--content-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.content-container h1 {
    font-size: 2.5rem;
    color: var(--tertiary-color);
    margin-bottom: 10px;
}

.content-container .subtitle { /* Style for the paragraph below h1 */
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Review Container Styling */
.review-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center iframes horizontally */
    gap: 30px; /* Space between reviews */
}

.review-container iframe {
    border: 1px solid var(--border-color); /* Subtle border */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%; /* Ensure iframe doesn't overflow container */
    background-color: #fff; /* Ensure background if content loading is slow */
    min-height: 200px; /* Give some default height */
    aspect-ratio: 500 / 250; /* Example ratio, adjust based on typical review height */
    height: auto; /* Allow height to adjust based on aspect ratio */
    width: 500px; /* Keep original width intent */
    max-width: 100%; /* Still prevent overflow */
}

.review-container iframe:hover {
    transform: translateY(-5px) scale(1.02); /* Lift and slightly enlarge */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Footer (Copied from fixed faq-style.css) */
.foot-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--primary-color);
    padding: 15px 20px;
    color: var(--text-color);
    text-align: center;
    margin-top: 30px; /* Ensure footer is visually separated */
}

.foot-bar a {
    display: inline-block;
    line-height: 0;
}

.foot-bar img {
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.foot-bar a:hover img {
    transform: scale(1.1);
}

.foot-bar p {
    margin: 0 10px;
    font-size: 0.9rem;
}

.foot-bar p img {
     width: 18px;
     height: 18px;
     margin: 0 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-container h1 {
        font-size: 2rem;
    }
    .content-container .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
     .foot-bar {
		display: flex;
		align-items: center;
		justify-content: space-around;
        padding: 15px;
    }
    .foot-bar a, .foot-bar p {
        margin-bottom: 10px;
    }
    
	.foot-bar > * {
		margin-left: 5px;
		margin-right: 5px;
	}
}

@media (max-width: 550px) {
     #QB-logo {
        font-size: 1.5em;
    }
    .content-container {
        padding: 20px 15px;
        margin: 20px 10px;
    }
    /* Adjust iframe width for smaller screens */
     .review-container iframe {
        width: 100%; /* Make iframe take full width */
     }
}
